home *** CD-ROM | disk | FTP | other *** search
/ SuperHack / SuperHack CD.bin / CODING / WINDOWS / SSAPI11.ZIP / SSTEST.ZIP / SSTEST.H < prev    next >
Encoding:
C/C++ Source or Header  |  1996-09-26  |  1.3 KB  |  54 lines

  1. /******************************************************************************\
  2. *
  3. * (C) Copyright 1996 by Shetef Solutions Ltd.
  4. *
  5. * Address:
  6. *        Shetef Solutions Ltd.
  7. *        P. O. Box 7938
  8. *        Haifa 31078
  9. *        ISRAEL
  10. *
  11. * Email :     Support@shetef.com
  12. * WWW:        http://www.shetef.com
  13. * Tel:        +972-4-8260064
  14. * Fax:        +972-6-271210
  15. *
  16. \******************************************************************************/
  17. // sstest.h : main header file for the SSTEST application
  18. //
  19.  
  20. #ifndef __AFXWIN_H__
  21.     #error include 'stdafx.h' before including this file for PCH
  22. #endif
  23.  
  24. #include "resource.h"        // main symbols
  25.  
  26. /////////////////////////////////////////////////////////////////////////////
  27. // CSstestApp:
  28. // See sstest.cpp for the implementation of this class
  29. //
  30.  
  31. class CSstestApp : public CWinApp
  32. {
  33. public:
  34.     CSstestApp();
  35.  
  36. // Overrides
  37.     // ClassWizard generated virtual function overrides
  38.     //{{AFX_VIRTUAL(CSstestApp)
  39.     public:
  40.     virtual BOOL InitInstance();
  41.     //}}AFX_VIRTUAL
  42.  
  43. // Implementation
  44.  
  45.     //{{AFX_MSG(CSstestApp)
  46.         // NOTE - the ClassWizard will add and remove member functions here.
  47.         //    DO NOT EDIT what you see in these blocks of generated code !
  48.     //}}AFX_MSG
  49.     DECLARE_MESSAGE_MAP()
  50. };
  51.  
  52.  
  53. /////////////////////////////////////////////////////////////////////////////
  54.